home *** CD-ROM | disk | FTP | other *** search
/ Giga Games 1 / Giga Games.iso / net / hack / 3_1 / sys / vms / lev_lex.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-01-12  |  587 b   |  24 lines

  1. /*       SCCS Id: @(#)lev_lex.h 3.1     92/01/10        */
  2. /* "vms/lev_lex.h" copied into "util/stdio.h" for use by lev_lex.c only!
  3.  * This is an awful kludge to allow util/lev_lex.c to be compiled as is.
  4.  * It works because the actual setup of yyin & yyout is performed in
  5.  * src/lev_main.c, where stdin & stdout are still correctly defined.
  6.  */
  7. /* note for 3.1: also used with util/dgn_lex.c */
  8.  
  9. #ifdef __GNUC__
  10. # ifndef CONST_OK
  11. #  define const
  12. # endif
  13. #endif
  14.  
  15. #include <stdio.h>
  16. #ifdef stdin
  17. # undef stdin
  18. #endif
  19. #define stdin  0
  20. #ifdef stdout
  21. # undef stdout
  22. #endif
  23. #define stdout 0
  24.